home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Games Collection 1 / software vault.zip / software vault / CDR10 / YICN23.ZIP / INCLUDE / FEVENT.H < prev    next >
C/C++ Source or Header  |  1992-11-23  |  552b  |  21 lines

  1. #ifndef FEVENT.H
  2.  
  3. #define FEVENT.H
  4.  
  5. #include "factor.h"
  6.  
  7. #define MAX_FEVENTS 10
  8.  
  9. class fevent : public factor
  10. {
  11. public:
  12.   void advance(void);
  13.   void addAt(int x, int y, int sqx, int sqy);
  14.   void assignFevent(int icon_number, int mode, byte identity = 255);
  15.   static directionTable * feventTable;
  16.   static void loadFevent(int position, char * special, char * sw, char * s,
  17.             char * se, char * w, char * center, char * e,
  18.             char * nw, char * n, char * ne, yakLib * myYakLib = NULL,
  19.             icon::flagType flags = icon::normal);
  20. };
  21. #endif